home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / bitshrn.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  501 b   |  24 lines

  1. <!--- This example shows BitSHRN --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>BitSHRN Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>BitSHRN Example</H3>
  13.  
  14. Returns the number bitwise shifted without rotation
  15. to the right by count bits.
  16.  
  17. <P>BitSHRN(1,1): <CFOUTPUT>#BitSHRN(1,1)#</CFOUTPUT>
  18. <P>BitSHRN(255,7): <CFOUTPUT>#BitSHRN(255,7)#</CFOUTPUT>
  19. <P>BitSHRN(-2147483548,1): <CFOUTPUT>#BitSHRN(-2147483548,1)#</CFOUTPUT>
  20.  
  21. </BODY>
  22.  
  23. </HTML>       
  24.